Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
A public-key signature system based on Ed25519 for the NATS ecosystem in typescript for ts-nats and node-nats
A public-key signature system based on Ed25519 for the NATS ecosystem system in JavaScript and Typescript.
ts-nkeys is a typescript nats library for node that for generating nkeys.
npm install ts-nkeys
// create an user nkey - also possible to create accounts, clusters, servers.
let user = createUser();
// once you have an nkey you can generate various keys.
// A seed is the public and private keys together.
// Seeds are strings, and start with the letter 'S'.
// Seeds need to be kept safe and never shared.
let seed = user.getSeed();
t.true(Buffer.isBuffer(seed));
t.is(seed[0], 'S'.charCodeAt(0));
// the second letter in the seed represents its type:
// `U` for user,
// `A` for account,
// `C` for cluster
// `N` for severs
t.is(seed[1], 'U'.charCodeAt(0));
// public keys can be shared and can be used to verify signed content
let publicKey = user.getPublicKey();
t.true(Buffer.isBuffer(publicKey));
// first letter represents the type of public key
// `U` for user,
// `A` for account,
// `C` for cluster
// `N` for severs
t.is(publicKey[0], 'U'.charCodeAt(0));
// To sign data
let data = Buffer.from("HelloWorld");
let sig = user.sign(data);
// to verify use the user, public or seed:
t.true(user.verify(data, sig));
// public keys can be used to verify signatures you cannot sign with them though.
let pk = fromPublic(publicKey);
t.true(pk.verify(data, sig));
// seeds can be used to reconstitute the keypair from a string
let sk = fromSeed(seed);
t.true(sk.verify(data, sig));
// and can be used to sign
let sig2 = sk.sign(data);
t.true(sk.verify(data, sig));
Our support policy for Nodejs versions follows Nodejs release support. We will support and build node-nats on even-numbered Nodejs versions that are current or in LTS.
Unless otherwise noted, the NATS source files are distributed under the Apache Version 2.0 license found in the LICENSE file.
FAQs
A public-key signature system based on Ed25519 for the NATS ecosystem in typescript for ts-nats and node-nats
The npm package ts-nkeys receives a total of 20,441 weekly downloads. As such, ts-nkeys popularity was classified as popular.
We found that ts-nkeys demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.